05c15690501044e4bb7cddd7633132db29d8f6eb,opennms-webapp/src/main/java/org/opennms/web/svclayer/support/DefaultSiteStatusViewService.java,DefaultSiteStatusViewService,createAggregateStatusUsingAssetColumn,#AggregateStatusView#,168
Before Change
status.setLabel(statusDef.getName());
if (AggregateStatus.NODES_ARE_DOWN.equals(status.getStatus())) {
status.setLink(createNodePageUrl(statusView, status));
}
stati.add(status);
After Change
Collection<OnmsNode> nodes = m_nodeDao.findAllByVarCharAssetColumnCategoryList(statusView.getColumnName(), statusView.getColumnValue(), statusDef.getCategories());
AggregateStatus status = new AggregateStatus(new HashSet<OnmsNode>(nodes));
status.setLabel(statusDef.getName());
status.setLink(createNodePageUrl(statusView, status));
stati.add(status);
}